home *** CD-ROM | disk | FTP | other *** search
- CONJG(3I) Last changed: 4-13-99
-
-
- NNAAMMEE
- CCOONNJJGG, DDCCOONNJJGG, QQCCOONNJJGG - Computes conjugate of a complex number
-
- SSYYNNOOPPSSIISS
- CCOONNJJGG (([ZZ==]_z]))
- DDCCOONNJJGG (([ZZ==]_z]))
- QQCCOONNJJGG (([ZZ==]_z]))
-
- IIMMPPLLEEMMEENNTTAATTIIOONN
- UNICOS, UNICOS/mk, IRIX systems
-
- CF90, MIPSpro 7 Fortran 90, MIPSpro Fortran 77
-
- SSTTAANNDDAARRDDSS
- Fortran
-
- Fortran extensions: DDCCOONNJJGG, QQCCOONNJJGG
-
- DDEESSCCRRIIPPTTIIOONN
- CCOONNJJGG, DDCCOONNJJGG, and QQCCOONNJJGG return the conjugate of a complex number.
- CCOONNJJGG is the generic function name; the others are specifics. These
- are elemental intrinsic functions. They accept the following
- argument:
-
- _z Must be type complex. See the RETURN VALUES section for
- information on input data types and return values.
-
- The data type and kind type for single-precision,
- double-precision, and quad-precision values differ depending
- on your platform. For platform-specific information, see
- the TERMINOLOGY section of the IINNTTRROO__IINNTTRRIINN(3I) man page.
-
- This function evaluates _y = _z - _i_z .
- _r _i
- NNOOTTEESS
- The CCOONNJJGG intrinsic function name can be passed as an argument; the
- others cannot.
-
- RREETTUURRNN VVAALLUUEESS
- CCOONNJJGG returns the complex conjugate of a complex number.
-
- DDCCOONNJJGG returns the double-precision complex conjugate of a
- double-complex number.
-
- QQCCOONNJJGG returns the quad-precision complex conjugate of a
- quad-precision complex number.
-
- EEXXAAMMPPLLEESS
- The following program gives RREESSUULLTT==((33..00,,--44..00)):
-
- PROGRAM CONTEST
- COMPLEX ARG, RESULT
- ARG=(3.0,4.0)
- RESULT=CONJG(ARG)
- PRINT *,RESULT
- STOP
- END
-
- SSEEEE AALLSSOO
- _I_n_t_r_i_n_s_i_c _P_r_o_c_e_d_u_r_e_s _R_e_f_e_r_e_n_c_e _M_a_n_u_a_l for the printed version of this
- man page.
-